Replace some references to the GtkTable, use GtkGrid instead
authorJavier Jardón <jjardon@gnome.org>
Thu, 29 Sep 2011 11:36:39 +0000 (12:36 +0100)
committerJavier Jardón <jjardon@gnome.org>
Thu, 29 Sep 2011 11:38:49 +0000 (12:38 +0100)
gtk/gtkbox.c
gtk/gtkcontainer.c
gtk/gtkfilechooser.c
gtk/gtkscrolledwindow.c
gtk/gtksizegroup.c
gtk/gtkviewport.c

index cb68b423b190d4abdc5c1eeb7102afc9f6c27190..b3b4db9518d4efa41b47080a55463e390606362f 100644 (file)
@@ -28,7 +28,7 @@
  * SECTION:gtkbox
  * @Short_description: A container box
  * @Title: GtkBox
- * @See_also: #GtkFrame, #GtkTable, #GtkLayout
+ * @See_also: #GtkFrame, #GtkGrid, #GtkLayout
  *
  * The GtkBox widget organizes child widgets into a rectangular area.
  *
index f53e8a5d3c1e8922054cd96c0b78de8b04d21a51..7ada895fc4dabe113874a19e401b83f96b49e3b1 100644 (file)
@@ -73,7 +73,7 @@
  * The second type of container can have more than one child; its purpose is to
  * manage <emphasis>layout</emphasis>. This means that these containers assign
  * sizes and positions to their children. For example, a #GtkHBox arranges its
- * children in a horizontal row, and a #GtkTable arranges the widgets it contains
+ * children in a horizontal row, and a #GtkGrid arranges the widgets it contains
  * in a two-dimensional grid.
  *
  * <refsect2 id="container-geometry-management">
@@ -1481,10 +1481,10 @@ gtk_container_get_border_width (GtkContainer *container)
  *
  * Adds @widget to @container. Typically used for simple containers
  * such as #GtkWindow, #GtkFrame, or #GtkButton; for more complicated
- * layout containers such as #GtkBox or #GtkTable, this function will
+ * layout containers such as #GtkBox or #GtkGrid, this function will
  * pick default packing parameters that may not be correct.  So
  * consider functions such as gtk_box_pack_start() and
- * gtk_table_attach() as an alternative to gtk_container_add() in
+ * gtk_grid_attach() as an alternative to gtk_container_add() in
  * those cases. A widget may be added to only one container at a time;
  * you can't place the same widget inside two different containers.
  **/
index edad5368775358830cf7455aaf74894c0793973e..e9487cb841b068cbfbca9848d5b6febe7a6d400f 100644 (file)
  * </example>
  * <note>
  *    If you want to set more than one extra widget in the file
- *    chooser, you can a container such as a #GtkVBox or a #GtkTable
+ *    chooser, you can a container such as a #GtkBox or a #GtkGrid
  *    and include your widgets in it.  Then, set the container as
  *    the whole extra widget.
  * </note>
index 1f2d33b3c074e02d6cb3490d128f9da890591e8c..3bd5f3b295052fa4be294572c2dbe8bdf4d688bd 100644 (file)
@@ -58,7 +58,7 @@
  * For widgets that lack native scrolling support, the #GtkViewport
  * widget acts as an adaptor class, implementing scrollability for child
  * widgets that lack their own scrolling capabilities. Use #GtkViewport
- * to scroll child widgets such as #GtkTable, #GtkBox, and so on.
+ * to scroll child widgets such as #GtkGrid, #GtkBox, and so on.
  *
  * If a widget has native scrolling abilities, it can be added to the
  * #GtkScrolledWindow with gtk_container_add(). If a widget does not, you
@@ -79,7 +79,7 @@
  *
  * If a #GtkScrolledWindow doesn't behave quite as you would like, or
  * doesn't have exactly the right layout, it's very possible to set up
- * your own scrolling with #GtkScrollbar and for example a #GtkTable.
+ * your own scrolling with #GtkScrollbar and for example a #GtkGrid.
  */
 
 
index ba9a803c04636bbfed4c52dc9070c84762500d87..4a5737f6060242a586fd6457227ea03cb950b852 100644 (file)
@@ -39,7 +39,7 @@
  * #GtkSizeGroup provides a mechanism for grouping a number of widgets
  * together so they all request the same amount of space.  This is
  * typically useful when you want a column of widgets to have the same
- * size, but you can't use a #GtkTable widget.
+ * size, but you can't use a #GtkGrid widget.
  *
  * In detail, the size requested for each widget in a #GtkSizeGroup is
  * the maximum of the sizes that would have been requested for each
index 7aa3a81b364a8b57a0464cf3f30326f1e2835db0..2d3e6dd09282ea74ae1e445a8a0d7cc8b15b16e6 100644 (file)
@@ -44,7 +44,7 @@
  * The #GtkViewport widget acts as an adaptor class, implementing
  * scrollability for child widgets that lack their own scrolling
  * capabilities. Use #GtkViewport to scroll child widgets such as
- * #GtkTable, #GtkBox, and so on.
+ * #GtkGrid, #GtkBox, and so on.
  *
  * If a widget has native scrolling abilities, such as #GtkTextView,
  * #GtkTreeView or #GtkIconview, it can be added to a #GtkScrolledWindow